版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/11/14/2013-11-14-CODE 127 Longest Substring Without Repeating Characters/
访问原文「CODE 127. Longest Substring Without Repeating Characters」
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring
without repeating letters for “abcabcbb” is “abc”, which the length is 3. For “bbbbb” the longest substring is “b”, with the length of 1.
|
|